desc:instruct
npx -y fetcher-mcp| Parameter | Type | Required | Description |
|---|---|---|---|
| url | string | Required | URL to fetch |
| timeout | number | Optional | Page loading timeout in milliseconds, default is 30000 (30 seconds) |
| waitUntil | string | Optional | Specifies when navigation is considered complete, options: 'load', 'domcontentloaded', 'networkidle', 'commit', default is 'load' |
| extractContent | boolean | Optional | Whether to intelligently extract the main content, default is true |
| maxLength | number | Optional | Maximum length of returned content (in characters), default is no limit |
| returnHtml | boolean | Optional | Whether to return HTML content instead of Markdown, default is false |
| waitForNavigation | boolean | Optional | Whether to wait for additional navigation after initial page load (useful for sites with anti-bot verification), default is false |
| navigationTimeout | number | Optional | Maximum time to wait for additional navigation in milliseconds, default is 10000 (10 seconds) |
| disableMedia | boolean | Optional | Whether to disable media resources (images, stylesheets, fonts, media), default is true |
| debug | boolean | Optional | Whether to enable debug mode (showing browser window), overrides the --debug command line flag if specified |